#!/bin/sh

set -o errexit
set -o nounset


rm -f './celerybeat.pid'
celery -A {{cookiecutter.project_slug}}.taskapp beat -l INFO
